.privacy-config {
    margin-top: 30px;
    padding: 20px;
    background: #0a0a0a;
    border-radius: 12px;
    border: 1px solid #1a1a1a;
}
.privacy-config h3 {
    color: #0fc;
    margin-bottom: 15px;
}
.info-text {
    color: #888;
    font-size: 0.8rem;
    margin-top: 10px;
}
.toggle-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
}
.toggle-container span {
    color: #fff;
}
.switch-privacy {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}
.switch-privacy input {
    opacity: 0;
    width: 0;
    height: 0;
}
.slider-privacy {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.4s;
    border-radius: 24px;
}
.slider-privacy:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
}
input:checked + .slider-privacy {
    background-color: #0fc;
}
input:checked + .slider-privacy:before {
    transform: translateX(26px);
}